home *** CD-ROM | disk | FTP | other *** search
/ Chip: 25 Years Anniversary / CHIP_25Jahre_Jubilaeum.iso / downloads / 388320 / MailWash.exe / {app} / MailWasher.exe / 0 / RCDATA / TSELECTMAILCLIENTFORM / TSELECTMAILCLIENTFORM.txt
Text File  |  2003-03-07  |  2KB  |  115 lines

  1. object SelectMailClientForm: TSelectMailClientForm
  2.   Left = 475
  3.   Top = 667
  4.   BorderIcons = [biSystemMenu]
  5.   BorderStyle = bsDialog
  6.   Caption = 'Select Mail Client'
  7.   ClientHeight = 142
  8.   ClientWidth = 412
  9.   Color = clBtnFace
  10.   Font.Charset = DEFAULT_CHARSET
  11.   Font.Color = clWindowText
  12.   Font.Height = -11
  13.   Font.Name = 'MS Sans Serif'
  14.   Font.Style = []
  15.   OldCreateOrder = False
  16.   Position = poMainFormCenter
  17.   OnCreate = FormCreate
  18.   PixelsPerInch = 96
  19.   TextHeight = 13
  20.   object SpaceLabel: TLabel
  21.     Left = 24
  22.     Top = 64
  23.     Width = 351
  24.     Height = 13
  25.     Caption = 
  26.       '(If the file name contains spaces then enclose it in double quot' +
  27.       'ation marks)'
  28.   end
  29.   object DefaultClientRadioButton: TRadioButton
  30.     Left = 8
  31.     Top = 8
  32.     Width = 169
  33.     Height = 17
  34.     Caption = 'Use a preconfigured mail client'
  35.     TabOrder = 3
  36.     OnClick = ClientRadioButtonClick
  37.   end
  38.   object SpecifyClientRadioButton: TRadioButton
  39.     Left = 8
  40.     Top = 40
  41.     Width = 161
  42.     Height = 17
  43.     Caption = 'Specify a mail client command'
  44.     TabOrder = 5
  45.     OnClick = ClientRadioButtonClick
  46.   end
  47.   object UserMailClientEdit: TEdit
  48.     Left = 184
  49.     Top = 40
  50.     Width = 193
  51.     Height = 21
  52.     TabOrder = 6
  53.     Text = 'UserMailClientEdit'
  54.     OnEnter = UserMailClientEditEnter
  55.   end
  56.   object Button1: TButton
  57.     Left = 384
  58.     Top = 40
  59.     Width = 17
  60.     Height = 21
  61.     Caption = '...'
  62.     TabOrder = 7
  63.     OnClick = Button1Click
  64.   end
  65.   object Button2: TButton
  66.     Left = 240
  67.     Top = 104
  68.     Width = 75
  69.     Height = 25
  70.     Caption = 'Test launch'
  71.     TabOrder = 1
  72.     OnClick = Button2Click
  73.   end
  74.   object OKButton: TButton
  75.     Left = 152
  76.     Top = 104
  77.     Width = 75
  78.     Height = 25
  79.     Caption = 'OK'
  80.     Default = True
  81.     TabOrder = 0
  82.     OnClick = OKButtonClick
  83.   end
  84.   object CancelButton: TButton
  85.     Left = 328
  86.     Top = 104
  87.     Width = 75
  88.     Height = 25
  89.     Cancel = True
  90.     Caption = 'Cancel'
  91.     ModalResult = 2
  92.     TabOrder = 2
  93.   end
  94.   object MailClientComboBox: TComboBox
  95.     Left = 184
  96.     Top = 8
  97.     Width = 193
  98.     Height = 21
  99.     Style = csDropDownList
  100.     ItemHeight = 13
  101.     TabOrder = 4
  102.     OnChange = MailClientComboBoxChange
  103.     Items.Strings = (
  104.       'No configured mail clients found')
  105.   end
  106.   object OpenDialog: TOpenDialog
  107.     DefaultExt = 'exe'
  108.     Filter = 'Executable (*.exe)|*.exe|MS-DOS Batch File (*.bat)|*.bat'
  109.     InitialDir = '%programfiles%'
  110.     Title = 'Select a mail client'
  111.     Left = 104
  112.     Top = 104
  113.   end
  114. end
  115.